home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 1
/
Gold Medal Software Volume 1 (Gold Medal) (1994).iso
/
prog
/
dasv10_.arj
/
MINIMUM.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-08-13
|
206 b
|
12 lines
// math.lib library function minimum()
long minimum(long num1,long num2,long num3)
{
if (num1 < num2 && num1 < num3)
return num1;
else if (num2 < num3)
return num2;
else
return num3;
}